PagedQueryHandler

interface PagedQueryHandler<T>

Interface definition for a callback to be invoked when a list of data is loaded.

Parameters

<T>

A class of data's type. since 3.0.0

Functions

Link copied to clipboard
abstract fun hasMore(): Boolean
Called whether a list of user is loaded.
Link copied to clipboard
abstract fun loadInitial(@NonNull handler: OnListResultHandler<T>)
Called when the user list is first loaded.
Link copied to clipboard
abstract fun loadMore(@NonNull handler: OnListResultHandler<T>)
Called when a list of user has been loaded.

Inheritors

Link copied to clipboard